home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr26 / netprog.zip / NETPROG.TAR / net / unix.h < prev    next >
C/C++ Source or Header  |  1989-12-17  |  288b  |  15 lines

  1. /*
  2.  * Definitions for UNIX domain stream and datagram client/server programs.
  3.  */
  4.  
  5. #include    <stdio.h>
  6. #include    <sys/types.h>
  7. #include    <sys/socket.h>
  8. #include    <sys/un.h>
  9.  
  10. #define    UNIXSTR_PATH    "./s.unixstr"
  11. #define    UNIXDG_PATH    "./s.unixdg"
  12. #define    UNIXDG_TMP    "/tmp/dg.XXXXXX"
  13.  
  14. char    *pname;
  15.